-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactoring/#221 fixed mypy warnings #225
Conversation
Some still need to be clarified
in RegisterPeerForwarder RegisterPeerForwarderBuilderParameter RegisterPeerForwarderFactory
exasol/analytics/udf/communication/peer_communicator/background_listener_thread.py
Outdated
Show resolved
Hide resolved
exasol/analytics/query_handler/graph/stage/sql/execution/query_handler_state.py
Show resolved
Hide resolved
exasol/analytics/query_handler/context/proxy/bucketfs_location_proxy.py
Outdated
Show resolved
Hide resolved
exasol/analytics/udf/communication/peer_communicator/background_listener_interface.py
Show resolved
Hide resolved
exasol/analytics/udf/communication/peer_communicator/background_listener_thread.py
Show resolved
Hide resolved
exasol/analytics/udf/communication/socket_factory/fault_injection.py
Outdated
Show resolved
Hide resolved
exasol/analytics/udf/communication/socket_factory/zmq_wrapper.py
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't forget to activate the type checker in the CI !!! Otherwise all the work is in vain ;)
Co-authored-by: Thomas Ubensee <[email protected]>
I assume the type checker was activated all the time in checks.yml:
but mypy was told to ignore all package of the project in pyproject.toml. The latter I updated. |
pandas = "^1.1.0" | ||
# request from Mikhail: | ||
# pandas = "^2.2.3" | ||
pandas = "^2.2.3" | ||
pydantic = "^1.10.2" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should upgrade pydantic to version 2 it might otherwise conflict with other projects
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See ticket
Closes #221
Closes #222
Closes #223
Closes #229